home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 May
/
Macworld (1999-05).dmg
/
Shareware World
/
Graphics
/
Geo3D 1.2.1
/
Sample Scripts
/
Groups
< prev
next >
Wrap
Text File
|
1999-02-03
|
452b
|
18 lines
tell application "Geo3D"
activate
make new document
set x to import groups from file ":Sample Scripts:Demo.grp"
if x > 0 then -- 0: error; x includes menu separators!
full screen
repeat with x from 1 to x
show group x -- without multi (default)
end repeat
show -- show all
show with multi -- hide all
repeat with x from 1 to 4
show group x with multi
end repeat
show group 3 with multi -- hide group 3
stack
end if
end tell